home *** CD-ROM | disk | FTP | other *** search
- program Started;
- {==================================================================}
- { Description: Getting Started Sample Application }
- { Copyright: ⌐ Copyright 1995-1999 Xceed Software Inc. }
- { All Rights Reserved. }
- {==================================================================}
-
- uses
- Forms,
- Main in 'Main.pas' {frmMain};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmMain, frmMain);
-
- Application.HintPause := 250;
- Application.HintHidePause := 10000;
-
- Application.Run;
- end.
-